#!/bin/bash

systemPolicyLocation="/private/var/db/";
systemPolicyPath="${systemPolicyLocation}SystemPolicy";
# See 11170501 for an explanation
if [[ -e "${SRCROOT}${systemPolicyPath}" ]]; then
	if [[ ${SRCPRODUCTVERSION} != "10.7.3" ]]; then
		/System/Library/PrivateFrameworks/SystemMigration.framework/Resources/safecp -f "${SRCROOT}${systemPolicyPath}" "${DSTROOT}${systemPolicyLocation}"
	fi
fi